home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Shareware
/
WorkTime 4.14
/
worktime.exe
/
{app}
/
Reports
/
web_log.ini
Wrap
INI File
|
2007-04-19
|
783b
|
31 lines
[Common]
Name=Web Usage Log
Description=Web Usage Log (Internet Explorer)
AllowFilterAppDoc=1
NeedJoinAppDocInFilter=0
[SQL]
select
Stat.datee "Date",
p.name "Project",
a.name "Activity",
u.name "User",
w.name "Workstation",
doc.name "Caption",
doc.url,
cast(Stat.begin_time as time) Begin_time,
cast(Stat.end_time as time) End_time,
(select FullTimeStr from ConvertIntToTimeStr(Stat.WorkTime)) "Worktime"
from detail_day Stat
join project p on Stat.project_id=p.id
join activity a on Stat.activity_id=a.id
join userr u on Stat.user_id=u.id
join workstation w on Stat.workstation_id=w.id
join app on Stat.app_id=app.id
join doc on Stat.doc_id=doc.id
%FROM%
where
Worktime>0 and app.exe_filename='iexplore.exe'
%AND%
order by datee,begin_time, stat.id